|
The Tiny C Compiler (aka TCC, tCc, or TinyCC) is an x86 and ARM processor C compiler created by Fabrice Bellard. It is designed to work for slow computers with little disk space (e.g. on rescue disks). Windows operating system support was added in version 0.9.23 (17 Jun 2005). TCC is distributed under the GNU Lesser General Public License (LGPL). TCC claims to implement all of ANSI C (C89/C90),〔(Tiny C Compiler Reference Documentation ) accessed on 2008-08-07〕 much of the C99 ISO standard,〔According to the project's (TODO list ) complex types are the only missing C99 feature. Variable Length Arrays have been added in TCC 0.9.26〕 and many GNU C extensions including inline assembly. ==Features== TCC has a number of features which differentiate it from other current C compilers: * Its small file size (about 100 KB for the x86 TCC executable) and memory footprint allow it to be used directly from a single 1.44 M floppy disk, such as a rescue disk. * TCC is intended to produce native x86, x86-64 and ARM code very quickly; according to Bellard, it compiles, assembles and links about nine times faster than GCC does.〔(Tiny C Compiler homepage )〕 * TCC has a number of compiler-specific language features intended to improve its practicality, such as an optional memory and bound checker, for improved code stability. * TCC allows programs to be run automatically at compile time using a command-line switch. This allows programs to be run as a shell script under Unix-like systems which support the shebang interpreter directive syntax. 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Tiny C Compiler」の詳細全文を読む スポンサード リンク
|